home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
programming
/
other
/
wild
/
include
/
clib
/
loadermodule_protos.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-05-25
|
782b
|
26 lines
#ifndef CLIB_LOADERMODULE_PROTOS_H
#define CLIB_LOADERMODULE_PROTOS_H
/*
** $VER: drawmodule_protos.h 2.01 (9.12.98)
**
** modules libraries common prototypes.
**
*/
#include <exec/types.h>
#include <utility/tagitem.h>
#include <wild/tdcore.h>
void SetModuleTags(struct WildApp *wapp,struct TagItem *tags);
void GetModuleTags(struct WildApp *wapp,struct TagItem *tags);
BOOL SetupModule(struct WildApp *wapp,struct TagItem *tags);
void CloseModule(struct WildApp *wapp);
BOOL RefreshModule(struct WildApp *wapp);
ULONG *LOALoadObj(struct TagItem *tags);
ULONG LOAGetObjAttr(struct WildApp *wapp,ULONG *obj,ULONG attr,ULONG def);
ULONG *LOANextObjChild(ULONG *obj,ULONG *prec,ULONG type);
void LOAMadeObjIs(ULONG *obj,ULONG *wildobj);
void LOAFreeObj(ULONG *obj);
#endc